Releasing v2.74.0#124
Merged
Merged
Conversation
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
cb-muthiahm
approved these changes
Jun 18, 2026
cb-muthiahm
approved these changes
Jun 18, 2026
There was a problem hiding this comment.
PR Complexity Score: 2.0 - Trivial
View Breakdown
- Lines Changed: 184
- Files Changed: 5
- Complexity Added: 0
- Raw Score: 18.68
Overview
This PR releases version 2.74.0 of the Chargebee Ruby client, primarily addressing missing resource registrations in the main chargebee.rb entrypoint. It updates version metadata across the project and comprehensively refreshes the list of required model files to ensure all resources are properly loaded.
Key Changes
- Bumps the gem version from 2.73.0 to 2.74.0 and updates associated metadata (changelog, VERSION file, gemspec, Gemfile.lock).
- Fixes missing resource registrations by expanding and restructuring the
requirelist inlib/chargebee.rbso all model classes are loaded, including newer resources (e.g., usage-related, omnichannel, ledger, alerts, offers). - Updates the
ChargeBee::VERSIONconstant to match the new release version.
Risks & Considerations
- The large reordering and expansion of
requirestatements inlib/chargebee.rbmay introduce load-order issues or runtime errors if any path is incorrect or if there are circular dependencies. - New requires for additional models could slightly increase load time or footprint; verifying that all referenced model files exist and load successfully is important.
- Downstream applications relying on the previous set of loaded models should be tested to confirm there are no regressions in initialization or autoload behaviour.
File-level change summary
| File | Change summary |
|---|---|
| CHANGELOG.md | Adds a new v2.74.0 entry describing bug fixes for missing resource registrations. |
| Gemfile.lock | Updates the local chargebee gem version reference from 2.73.0 to 2.74.0. |
| VERSION | Increments the library version string to 2.74.0. |
| chargebee.gemspec | Bumps gem version to 2.74.0 and updates the release date to 2026-06-18. |
| lib/chargebee.rb | Expands and reorganizes model require statements to include all resources and updates ChargeBee::VERSION to 2.74.0. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v2.74.0 (2026-06-12)
Bug Fixes:
lib/chargebee.rb.